home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
JCSM Shareware Collection 1993 November
/
JCSM Shareware Collection - 1993-11.iso
/
cl720
/
sst115j.lzh
/
SSTSEL.H
< prev
next >
Wrap
Text File
|
1992-06-12
|
1KB
|
26 lines
/* ------------------------------------------------------------------------ */
/* sstsel.h */
/* */
/* selection system header file */
/* ------------------------------------------------------------------------ */
#define MAXLINE 76
typedef struct _llrec {
int tag;
char line[MAXLINE];
struct _llrec *_nx; /* points to next record */
struct _llrec *_pv; /* points to prev record */
} SelREC;
/* ------------------------------------------------------------------------ */
/* function prototypes */
/* ------------------------------------------------------------------------ */
int Sselstr (int x, int y, int t);
char *Sselonestr (int x, int y, int t);
SelREC *Sinsert (char *s);
void Sforeach (void (*func) (char *s));
void Sdelete (void);